home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ShareWare OnLine 2
/
ShareWare OnLine Volume 2 (CMS Software)(1993).iso
/
prog
/
pbc22b.zip
/
PBC$BAS.ZIP
/
VERTPRIN.BAS
< prev
next >
Wrap
BASIC Source File
|
1993-04-25
|
837b
|
26 lines
' +----------------------------------------------------------------------+
' | |
' | PBClone Copyright (c) 1990-1993 Thomas G. Hanlin III |
' | |
' +----------------------------------------------------------------------+
DECLARE SUB CursorInfo (Visible%, StartLine%, EndLine%, MaxLine%)
SUB VerticalPrint (St$)
Row% = CSRLIN
Col% = POS(0)
CursorInfo Visible%, StartLine%, EndLine%, MaxLine%
IF Visible% THEN LOCATE Row%, Col%, 0
FOR tmp% = 1 TO LEN(St$)
LOCATE Row% + tmp% - 1, Col%
PRINT MID$(St$, tmp%, 1);
NEXT
IF Visible% THEN
LOCATE Row%, Col%, 1
ELSE
LOCATE Row%, Col%
END IF
END SUB